home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / sozobon1.zoo / sys / until.h < prev   
Text File  |  1990-11-16  |  230b  |  18 lines

  1. /*
  2.  *    UNTIL.H        ...some fun #defines...        -Dal
  3.  */
  4.  
  5. #define    repeat            do
  6. #define    until(cond)        while(!(cond))
  7. #define    HELL_FREEZES_OVER    (1)
  8.  
  9. /*
  10.  *
  11.  * now you can...
  12.  *
  13.  * repeat {
  14.  *    something();
  15.  * } until(HELL_FREEZES_OVER);
  16.  *
  17.  */
  18.